/*
 * 該当HTMLに特化したスタイル (特典強調・注意書き縮小版)
 */

/* -------------------- ユーティリティ/共通スタイル (変更なし) -------------------- */
.top-news-background {
  /* ★修正1: CSSではセミコロンではなくコロンを使用 */
  width: 100%;

  /* 背景色 (このままでOK) */
  background-color: rgba(201, 163, 131, 0.3);
}
.center-text {
  text-align: center;
}

.shadow-effect {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* スペーサーの代替 */
.separator-large {
  height: 40px;
}

.separator-small {
  height: 20px;
}

/* グラデーションテキストとアイコン */
.purple-gradient-text {
  background: linear-gradient(90deg, #8a2be2, #4b0082);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

.orange-gradient-text {
  background: linear-gradient(90deg, #ff8c00, #ff4500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

.purple-gradient-icon {
  background: linear-gradient(45deg, #8a2be2, #4b0082);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 5px;
}

.orange-gradient-icon {
  background: linear-gradient(45deg, #ff8c00, #ff4500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 5px;
}

/* リンク */
a.text-link {
  color: #4b0082;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}

a.text-link:hover {
  color: #8a2be2;
  text-decoration: underline;
}

a.cta-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #8a2be2, #4b0082);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: opacity 0.2s;
}

a.cta-link:hover {
  opacity: 0.9;
}

a.secondary-cta {
  background: linear-gradient(90deg, #ff8c00, #ff4500);
}

.purchase-link {
  font-size: 1.1em;
}

.highlight-date {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  margin: 15px 0;
  padding: 5px;
  background-color: #fffaf0;
  border-left: 5px solid #ff8c00;
  text-align: center;
}

/* -------------------- レイアウトとコンテナ (変更なし) -------------------- */

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.news-section {
  padding: 30px 0;
}

.news-container {
  background-color: transparent;
  padding: 0;
  border-radius: 0;

  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* -------------------- セクションヘッダー (変更なし) -------------------- */

.section-header {
  text-align: center;
  display: none;
}

/* -------------------- ニュースアイテム (変更なし) -------------------- */

.news-item {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  background-color: #fcfaf5;
}

.news-title {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  line-height: 1.4;
}

.concert-item .news-title {
  text-align: center;
}

.news-item.news-title,
.news-item.digital-release-item {
  border-bottom: none;
  padding-bottom: 40px;
}
.main-text {
  font-size: 1.7em;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* 画像ラッパー */
.news-image-wrapper {
  margin-bottom: 20px;
  text-align: center;
}

.item-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* コンサート固有のスタイル */
/* 優先度を上げるため、親要素のクラスを併記 */
.news-item .concert-info-meta {
  text-align: center;
  margin: 20px 0;
  font-size: 2.5em;
  font-weight: bold;
  color: #333 !important;
}

.concert-info-meta p {
  margin: 5px 0;
}

/* CD/デジタルリリース固有のスタイル */
.cd-details,
.club-details {
  padding: 10px;
  border-left: 3px solid #ff8c00;
  margin-bottom: 20px;
}

/* トラックリストのレイアウト */
.release-tracks-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.track-item {
  width: 100%;
  text-align: center;
  padding: 15px;
  border: 1px dashed #ccc;
  border-radius: 5px;
  background-color: #fff;
}

.track-item .item-image {
  max-width: 250px;
  margin: 0 auto 15px;
  display: block;
}

.track-title {
  font-size: 2em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

/* ファンクラブ（アナログ）固有のスタイル */
.member-form-title {
  margin: 20px 0;
  font-size: 1.3em;
}

.benefits-section,
.price-section {
  margin-top: 30px;
}

.section-sub-heading {
  font-size: 2em;
  color: #8a2be2;
  margin-bottom: 15px;
}

.benefits-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px; /* パディングを増やして余白を確保 */
  background-color: #f0f0ff;
  border-radius: 5px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  color: #333;
  font-size: 1.7em;
  font-weight: bold;
  line-height: 2.4;

  list-style: none;
  padding-left: 0;

  /* ★★★ 修正点: 上下中央揃えに変更 ★★★ */
  display: flex;
  align-items: center; /* コンテンツ全体を中央に揃える */

  margin-bottom: 12px;
}

.attention-text {
  max-width: 700px;
  /* ★★★ 変更点: 中央寄せのために追加 ★★★ */
  margin-left: auto;
  margin-right: auto;
  /* ★★★ */
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ff8c00;
  background-color: #fff5e6;
  border-radius: 5px;
  /* ★★★ 変更点: 注意書きをさらに小さく、薄い色に ★★★ */
  font-size: 1.2em;
  color: #999;
}

/* MV関連 */
.mv-link {
  margin: 15px 0;
  font-size: 1.7em;
  font-weight: bold;
}

.mv-supporter-list {
  margin-top: 30px;
  border-top: 1px dashed #ccc;
  padding-top: 20px;
}

.supporter-list-title {
  font-weight: bold;
  color: #8a2be2;
  margin-top: 15px;
  border-left: 4px solid #8a2be2;
  padding-left: 10px;
}

.supporter-names {
  color: #555;
  font-weight: bold;
  font-size: 1.2em;
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.supporter-names li {
  background-color: #f4f4f4;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.9em;
}

.mv-note {
  margin-top: 30px;
  padding: 15px;
  background-color: #f7f7f7;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.mv-note .note-title {
  font-weight: bold;
  color: #4b0082;
  margin-bottom: 10px;
}

/* サポーターズクラブ */
.club-plan-title {
  font-size: 1.7em;
  color: #ff8c00;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

.club-benefits-list {
  list-style-type: none;
  padding-left: 0;
}

.club-benefits-list li {
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.club-benefits-list li::before {
  content: "・";
  color: #8a2be2;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

/* LINEキャンペーン */
.line-campaign-text {
  font-size: 1.7em;
  margin: 15px 0;
  font-weight: bold;
  color: #00b900;
}

.line-button {
  margin: 20px 0;
}

.line-add-friend-button {
  max-width: 200px;
  height: auto;
}

.line-campaign-note {
  font-size: 0.9em;
  color: #777;
  font-weight: normal;
}

/* -------------------- カスタムテーブル (変更なし) -------------------- */

.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #f7f7f7;
}

.custom-table th,
.custom-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
  font-size: 0.95em;
  word-wrap: break-word;
  word-break: break-word;
}

.custom-table th {
  width: 30%;
  background-color: #e8e8e8;
  color: #333;
  font-weight: bold;
}

.custom-table td {
  width: 70%;
  background-color: #fff;
  color: #333333;
}

/* -------------------- レスポンシブ対応 (変更なし) -------------------- */

/* タブレット (768px以上) */
@media (min-width: 768px) {
  .news-title {
    font-size: 1.7em;
  }

  .track-item {
    width: calc(70% - 10px);
  }

  .track-item .item-image {
    max-width: 500px;
  }

  .custom-table th {
    width: 20%;
  }

  .custom-table td {
    width: 80%;
  }

  /* タブレット以上でbenefits-containerの幅を適用 */
  .benefits-container {
    max-width: 600px;
  }
}

/* デスクトップ (1200px以上) */
@media (min-width: 1200px) {
  .news-section {
    padding: 50px 0;
  }

  .news-title {
    font-size: 3em;
  }

  .news-item {
    padding: 40px;
  }

  .custom-table th {
    width: 15%;
  }

  .custom-table td {
    width: 85%;
  }

  /* デスクトップでbenefits-containerの最大幅を適用 */
  .benefits-container {
    max-width: 700px;
  }
}

.highlight-datetime {
  /* 目立たせるための背景と色 */
  display: inline-block; /* 適切なパディングのためにインラインブロック化 */
  background-color: #ffffe0; /* 薄い黄色 */
  color: #cc0000; /* 濃い赤 */

  /* フォントの強調 */
  font-weight: bold;
  font-size: 1.1em; /* 周囲のテキストより少し大きく */

  /* 視覚的な余白 */
  padding: 3px 6px;
  border-radius: 4px;
  margin: 5px 0;
}
